From 55c81d635cce396ebfe4d052ac6ece0b23a720c4 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 25 May 2007 10:16:00 +0100 Subject: [PATCH] xend: Increase shutdown timeout. 30 seconds is not a very long time for a busy domain to cleanly shutdown all its services, which may be arbitrary in complexity. Increase the timeout to 5 minutes. Signed-off-by: John Levon --- tools/python/xen/xend/XendConstants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendConstants.py b/tools/python/xen/xend/XendConstants.py index d7469ce5fe..15dcb67b1f 100644 --- a/tools/python/xen/xend/XendConstants.py +++ b/tools/python/xen/xend/XendConstants.py @@ -79,7 +79,7 @@ DOM_STATES_OLD = [ STATE_DOM_OK = 1 STATE_DOM_SHUTDOWN = 2 -SHUTDOWN_TIMEOUT = 30.0 +SHUTDOWN_TIMEOUT = (60.0 * 5) ZOMBIE_PREFIX = 'Zombie-' -- 2.30.2